home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / Include / dump.h < prev    next >
C/C++ Source or Header  |  1991-05-30  |  677b  |  27 lines

  1. /*
  2.  * dump.h --
  3.  *
  4.  *    Declarations of external routines for the ``dump'' utility.
  5.  *
  6.  * Copyright (C) 1985 Regents of the University of California
  7.  * All rights reserved.
  8.  *
  9.  *
  10.  * $Header: /sprite/src/kernel/utils/RCS/dump.h,v 9.2 91/05/17 10:37:38 kupfer Exp $ SPRITE (Berkeley)
  11.  */
  12.  
  13. #ifndef _DUMP
  14. #define _DUMP
  15.  
  16. /* 
  17.  * For L1 routines that want to print a header line every screenful, 
  18.  * this #define gives a common definition for how big a screen is.  A 
  19.  * few extra lines are provided so that, e.g., syslog output is less 
  20.  * likely to make the header scroll off the screen.
  21.  */
  22. #define DUMP_LINES_PER_SCREEN    20
  23.  
  24. extern void    Dump_Init _ARGS_((void));
  25.  
  26. #endif /* _DUMP */
  27.